(bug 18436) remove redundant (and disruptive to CSS) hardcoded "display:inline" style...
authorHappy-melon <happy-melon@users.mediawiki.org>
Thu, 24 Sep 2009 22:20:56 +0000 (22:20 +0000)
committerHappy-melon <happy-melon@users.mediawiki.org>
Thu, 24 Sep 2009 22:20:56 +0000 (22:20 +0000)
RELEASE-NOTES
skins/common/wikibits.js

index 93fb89d..dfb9670 100644 (file)
@@ -536,6 +536,8 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN
 * (bug 20702) Parser functions can now be used correctly in
   MediaWiki:Missing-article
 * (bug 14117) "redirected from" is now also shown on foreign file redirects
+* (bug 18436) JavaScript-added AJAX messages (from the JS watch/unwatch, for 
+  instance) no longer include a redundant "display:block" hardcoded style.
 
 == API changes in 1.16 ==
 
index 06bbff3..b62cbde 100644 (file)
@@ -940,7 +940,6 @@ function jsMsg( message, className ) {
        }
 
        messageDiv.setAttribute( 'id', 'mw-js-message' );
-       messageDiv.style.display = 'block';
        if( className ) {
                messageDiv.setAttribute( 'class', 'mw-js-message-'+className );
        }